home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / mstrrec.sql < prev    next >
Text File  |  2000-05-12  |  874b  |  26 lines

  1. /* RCSVER $Id: mstrrec.sql,v 1.2 1999-08-02 14:32:36-05 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        mstrrec.sql
  6. * Date:        02/23/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the mstrrec table.
  9. * Changes:
  10. ************************************************************************* */
  11. CREATE TABLE mstrrec
  12. (
  13.     record_type    NUMBER(38)
  14.         CONSTRAINT ref1_mstrrec REFERENCES rectypes(record_type),
  15.     elapsed_time    NUMBER(38),
  16.     rec_seq_num    NUMBER(38),
  17.     det_seq_num    NUMBER(38),
  18.     conversion_num    NUMBER(38)
  19.         CONSTRAINT ref2_mstrrec REFERENCES convert(conversion_num),
  20.     probe_context    NUMBER(38),
  21.     operator_context NUMBER(38),
  22.     driver_context    NUMBER(38),
  23.     fare_context    NUMBER(38),
  24.     CONSTRAINT pk_mstrrec PRIMARY KEY (det_seq_num)
  25. );
  26.